home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Your Choice 3
/
Your Choice Software Collection 3.iso
/
dos
/
qpeg15e
/
install.dat
/
DRVSRC
/
REALTEK.ASM
< prev
next >
Wrap
Assembly Source File
|
1994-05-01
|
917b
|
30 lines
; Qpeg driver for SVGA cards with Realtek RTG 3105 chipset
; And probably other Realtek chips (This was actually written for a
; PT-505 with 512k, but should work with any RTG 3105 compatible card)
; By Christopher L. Tumber
; aa993@freenet.carleton.ca
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank:
mov dx,3d7h ;RTG CPU R/W port
out dx,al
retf
Init:
retf
Exit:
retf
Code Ends
End Procs
; Whew! Complicated eh?